footer {
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    /* background: linear-gradient(to right, #00093c, #062a49); */
    background-color: #3a3a3a;
    color: #fff;
    padding: 60px 0 30px;
    /* border-top-left-radius: 125px; */
    font-size: 13px;
    line-height: 20px;
}

footer .row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

footer p {
    font-family: var(--txt-font1);
}

footer .col {
    flex-basis: 25%;
    padding: 10px;
}

footer .col:nth-child(2) p i {
    font-size: 15px;
    margin-right: 5px;
}

footer .col:nth-child(2),
footer .col:nth-child(3) {
    flex-basis: 15%;
}

footer .logo {
    width: 70%;
    margin-bottom: 30px;
}

footer .col:nth-child(1) p {
    text-align: justify;
}

footer .col h3 {
    width: fit-content;
    margin-bottom: 30px;
    position: relative;
    font-size: 1rem;
    font-family: var(--H-font);
}

footer .email {
    margin: 20px 0;
}

footer .email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
}

footer ul li {
    list-style: none;
    margin-bottom: 12px;
}

footer ul li a {
    text-decoration: none;
    color: #fff;
}

footer ul li a:hover {
    text-decoration: underline;
}

footer .socialIcons .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: var(--bg-color1);
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

footer .socialIcons .fab:hover {
    color: var(--bg-color2);
    font-size: 22px;
}

footer .text {
    margin-bottom: 40px;
}

footer .text div {
    margin-top: 0.7rem;
}

footer .text span a {
    color: var(--bg-color2);
    cursor: pointer;
}

footer .text span a:hover {
    text-decoration: underline;
}

footer hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

footer .copyRight {
    text-align: center;
}

footer .col .underLine {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

footer .col .underLine span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 1100px) {
    footer .col h3 {
        font-size: 0.9rem;
    }
    footer .col p,
    footer .text {
        font-size: 0.7rem;
    }
    footer .row {
        width: 95%;
    }
    footer .socialIcons .fab:hover {
        font-size: 20px;
    }
    footer .socialIcons .fab {
        font-size: 18px;
        height: 30px;
        width: 30px;
        margin-right: 10px;
        line-height: 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0px 20px;
    }
    footer .col h3 {
        font-size: 0.8rem;
    }
    footer .col p,
    footer .col ul,
    footer .text {
        font-size: 0.6rem;
    }
    footer .row {
        width: 99%;
    }
    footer .socialIcons .fab:hover {
        font-size: 18px;
    }
    footer .socialIcons .fab {
        font-size: 17px;
        height: 25px;
        width: 25px;
        margin-right: 10px;
        line-height: 25px;
    }
    footer .copyRight {
        font-size: 0.8rem;
    }
    footer .col {
        flex-basis: 30%;
    }
}

@media (max-width: 700px) {
    footer {
        bottom: unset !important;
    }
    footer .row {
        width: 85%;
    }
    footer .col {
        flex-basis: 100% !important;
    }
    footer .col:nth-child(2),
    footer .col:nth-child(3) {
        flex-basis: 100% !important;
    }
}